<style>
 .qs-section {
    background: url('your-background-image.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
}

.qs-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
	padding-bottom: 50px;
}

.qs-card { flex: 1; }

/* REG FORM */
.qs-reg-form {
    /* background: rgba(10, 25, 41, 0.85); */
	background: radial-gradient(227.73% 291.91% at 50% 0%, rgba(3, 16, 22, 0.75) 18.5%, rgba(21, 137, 180, 0.75) 56%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
}

.qs-title { color: #fff; font-size: 28px; margin: 0 0 15px; letter-spacing: 1px; }
.qs-desc { color: #b0b8c1; font-size: 14px; line-height: 1.6; margin-bottom: 30px; }

.qs-field { margin-bottom: 20px; }
.qs-field label { display: block; color: #737b83; font-size: 12px; margin-bottom: 8px; }
.qs-field input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px;
    border-radius: 6px;
    color: #fff;
    box-sizing: border-box;
}

/* SCRYDE ORANGE BUTTON */
.qs-btn-orange {
    width: 100%;
    /* background: linear-gradient(180deg, #ff9b44 0%, #d46c1a 100%); */
    background: radial-gradient(128% 100% at 50% 0px, rgb(255, 229, 70) 2.6%, rgb(152, 74, 8) 57.29%, rgb(255, 180, 1) 100%);
    border: none;
    padding: 18px;
    color: #fff;
    font-weight: 800;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 108, 26, 0.4);
    transition: 0.3s;
    text-transform: uppercase;
}

.qs-btn-orange:hover { transform: translateY(-2px); filter: brightness(1.1); }

/* DOWNLOADS COLUMN */
.qs-dl-title { color: #fff; font-size: 16px; margin-bottom: 20px; text-transform: uppercase; }
.qs-dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.dl-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.dl-box:hover { background: rgba(255, 255, 255, 0.08); border-color: #00c0ff; }
.dl-box img { width: 24px; height: 24px; }
.dl-box span { color: #fff; font-size: 11px; font-weight: 700; }

.qs-launcher-box { 
    max-width: 1170px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    padding-bottom: 40px;
 }
.qs-launcher-box p { color: #b0b8c1; font-size: 13px; margin-bottom: 20px; }
.qs-launcher-box a { color: #ff9b44; text-decoration: none; }

.qs-btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #ff9b44;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 13px;
}

.qs-useful h4 { color: #fff; font-size: 14px; margin-bottom: 20px; }
.qs-info-links { display: flex; flex-direction: column; gap: 15px; }
.qs-info-links a { display: flex; align-items: center; gap: 10px; color: #b0b8c1; text-decoration: none; font-size: 13px; }
.qs-info-links img { width: 18px; }

/* SOCIAL ICONS */
.qs-social-icons { display: flex; justify-content: center; gap: 15px; margin-top: 20px; }
.qs-soc { width: 32px; height: 32px; background: #1a1d23; border-radius: 50%; } /* Add your icons as backgrounds */
</style>